home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 16 / AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso / pd / anwendungen / xpk_source / xpkmaster / texts.c < prev    next >
C/C++ Source or Header  |  1998-08-27  |  2KB  |  79 lines

  1. #ifndef XPKMASTER_TEXTS_C
  2. #define XPKMASTER_TEXTS_C
  3.  
  4. /* Routinesheader
  5.  
  6.     Name:        texts.c
  7.     Main:        xpkmaster
  8.     Versionstring:    $VER: texts.c 1.5 (21.01.1998)
  9.     Author:        SDI
  10.     Distribution:    Freeware
  11.     Description:    all library texts
  12.  
  13.  1.0   07.10.96 : first real version
  14.  1.1   28.12.96 : added password requester strings
  15.  1.2   09.03.97 : a new string
  16.  1.3   31.03.97 : moved unknown error into err field
  17.  1.4   19.12.97 : code cleanup
  18.  1.5   21.01.98 : added new texts
  19.  1.6   21.02.98 : renamed from xpk_strings.c
  20. */
  21.  
  22. #include <exec/types.h>
  23. #include "texts.h"
  24.  
  25. STRPTR strings[LOCALE_STRINGCNT] = {
  26. "Packing",
  27. "Packed",
  28. "Unpacking",
  29. "Unpacked",
  30. "Reading",
  31. "Read",
  32. "Aborted",
  33. "Enter password",
  34. "Enter %ld bit key",
  35. "preferences setable packing and encrypting.",
  36. "Retype for verification",
  37. };
  38.  
  39. STRPTR XpkErrs[LOCALE_ERRSTRINGCNT] =
  40. {
  41.   "OK",
  42.   "Feature not implemented in selected library",
  43.   "Function may not be used with files",
  44.   "Error reading input",
  45.   "Error writing output",
  46.   "Check sum failure",        /* 5 */
  47.   "Library too old for this file",
  48.   "Out of memory",
  49.   "Library already in use",
  50.   "Can't find decompressor for this format",
  51.   "Output buffer too small",    /* 10 */
  52.   "Input buffer too large",
  53.   "This packing mode not supported",
  54.   "Password required",
  55.   "Input file is corrupt",
  56.   "Can't find required XPK library",    /* 15 */
  57.   "Bad internal parameters",
  58.   "Data cannot be compressed",
  59.   "Requested compression method not found",
  60.   "Operation aborted by user",
  61.   "Input file truncated",    /* 20 */
  62.   "MC68020 or better required",
  63.   "Data already compressed",
  64.   "Data not compressed",
  65.   "Output file already exists",
  66.   "Master library too old",    /* 25 */
  67.   "Sub library too old",
  68.   "This library cannot encrypt",
  69.   "Can't get info",
  70.   "This compression method is lossy",
  71.   "Compression hardware required",    /* 30 */
  72.   "Compression hardware failed",
  73.   "Password incorrect",
  74.   "Unknown error",
  75.   "Automatic request time out",
  76. };
  77.  
  78. #endif /* XPKMASTER_TEXT_C */
  79.